home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gcc_260.zip / gcc_260 / gcc.info-16 (.txt) < prev    next >
GNU Info File  |  1994-07-14  |  49KB  |  873 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.54 from the input
  2. file gcc.texi.
  3.    This file documents the use and the internals of the GNU compiler.
  4.    Published by the Free Software Foundation 675 Massachusetts Avenue
  5. Cambridge, MA 02139 USA
  6.    Copyright (C) 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
  7.    Permission is granted to make and distribute verbatim copies of this
  8. manual provided the copyright notice and this permission notice are
  9. preserved on all copies.
  10.    Permission is granted to copy and distribute modified versions of
  11. this manual under the conditions for verbatim copying, provided also
  12. that the sections entitled "GNU General Public License" and "Protect
  13. Your Freedom--Fight `Look And Feel'" are included exactly as in the
  14. original, and provided that the entire resulting derived work is
  15. distributed under the terms of a permission notice identical to this
  16.    Permission is granted to copy and distribute translations of this
  17. manual into another language, under the above conditions for modified
  18. versions, except that the sections entitled "GNU General Public
  19. License" and "Protect Your Freedom--Fight `Look And Feel'", and this
  20. permission notice, may be included in translations approved by the Free
  21. Software Foundation instead of in the original English.
  22. File: gcc.info,  Node: Standard Names,  Next: Pattern Ordering,  Prev: Constraints,  Up: Machine Desc
  23. Standard Pattern Names For Generation
  24. =====================================
  25.    Here is a table of the instruction names that are meaningful in the
  26. RTL generation pass of the compiler.  Giving one of these names to an
  27. instruction pattern tells the RTL generation pass that it can use the
  28. pattern in to accomplish a certain task.
  29. `movM'
  30.      Here M stands for a two-letter machine mode name, in lower case.
  31.      This instruction pattern moves data with that machine mode from
  32.      operand 1 to operand 0.  For example, `movsi' moves full-word data.
  33.      If operand 0 is a `subreg' with mode M of a register whose own
  34.      mode is wider than M, the effect of this instruction is to store
  35.      the specified value in the part of the register that corresponds
  36.      to mode M.  The effect on the rest of the register is undefined.
  37.      This class of patterns is special in several ways.  First of all,
  38.      each of these names *must* be defined, because there is no other
  39.      way to copy a datum from one place to another.
  40.      Second, these patterns are not used solely in the RTL generation
  41.      pass.  Even the reload pass can generate move insns to copy values
  42.      from stack slots into temporary registers.  When it does so, one
  43.      of the operands is a hard register and the other is an operand
  44.      that can need to be reloaded into a register.
  45.      Therefore, when given such a pair of operands, the pattern must
  46.      generate RTL which needs no reloading and needs no temporary
  47.      registers--no registers other than the operands.  For example, if
  48.      you support the pattern with a `define_expand', then in such a
  49.      case the `define_expand' mustn't call `force_reg' or any other such
  50.      function which might generate new pseudo registers.
  51.      This requirement exists even for subword modes on a RISC machine
  52.      where fetching those modes from memory normally requires several
  53.      insns and some temporary registers.  Look in `spur.md' to see how
  54.      the requirement can be satisfied.
  55.      During reload a memory reference with an invalid address may be
  56.      passed as an operand.  Such an address will be replaced with a
  57.      valid address later in the reload pass.  In this case, nothing may
  58.      be done with the address except to use it as it stands.  If it is
  59.      copied, it will not be replaced with a valid address.  No attempt
  60.      should be made to make such an address into a valid address and no
  61.      routine (such as `change_address') that will do so may be called.
  62.      Note that `general_operand' will fail when applied to such an
  63.      address.
  64.      The global variable `reload_in_progress' (which must be explicitly
  65.      declared if required) can be used to determine whether such special
  66.      handling is required.
  67.      The variety of operands that have reloads depends on the rest of
  68.      the machine description, but typically on a RISC machine these can
  69.      only be pseudo registers that did not get hard registers, while on
  70.      other machines explicit memory references will get optional
  71.      reloads.
  72.      If a scratch register is required to move an object to or from
  73.      memory, it can be allocated using `gen_reg_rtx' prior to reload.
  74.      But this is impossible during and after reload.  If there are
  75.      cases needing scratch registers after reload, you must define
  76.      `SECONDARY_INPUT_RELOAD_CLASS' and perhaps also
  77.      `SECONDARY_OUTPUT_RELOAD_CLASS' to detect them, and provide
  78.      patterns `reload_inM' or `reload_outM' to handle them.  *Note
  79.      Register Classes::.
  80.      The constraints on a `moveM' must permit moving any hard register
  81.      to any other hard register provided that `HARD_REGNO_MODE_OK'
  82.      permits mode M in both registers and `REGISTER_MOVE_COST' applied
  83.      to their classes returns a value of 2.
  84.      It is obligatory to support floating point `moveM' instructions
  85.      into and out of any registers that can hold fixed point values,
  86.      because unions and structures (which have modes `SImode' or
  87.      `DImode') can be in those registers and they may have floating
  88.      point members.
  89.      There may also be a need to support fixed point `moveM'
  90.      instructions in and out of floating point registers.
  91.      Unfortunately, I have forgotten why this was so, and I don't know
  92.      whether it is still true.  If `HARD_REGNO_MODE_OK' rejects fixed
  93.      point values in floating point registers, then the constraints of
  94.      the fixed point `moveM' instructions must be designed to avoid
  95.      ever trying to reload into a floating point register.
  96. `reload_inM'
  97. `reload_outM'
  98.      Like `movM', but used when a scratch register is required to move
  99.      between operand 0 and operand 1.  Operand 2 describes the scratch
  100.      register.  See the discussion of the `SECONDARY_RELOAD_CLASS'
  101.      macro in *note Register Classes::..
  102. `movstrictM'
  103.      Like `movM' except that if operand 0 is a `subreg' with mode M of
  104.      a register whose natural mode is wider, the `movstrictM'
  105.      instruction is guaranteed not to alter any of the register except
  106.      the part which belongs to mode M.
  107. `load_multiple'
  108.      Load several consecutive memory locations into consecutive
  109.      registers.  Operand 0 is the first of the consecutive registers,
  110.      operand 1 is the first memory location, and operand 2 is a
  111.      constant: the number of consecutive registers.
  112.      Define this only if the target machine really has such an
  113.      instruction; do not define this if the most efficient way of
  114.      loading consecutive registers from memory is to do them one at a
  115.      time.
  116.      On some machines, there are restrictions as to which consecutive
  117.      registers can be stored into memory, such as particular starting or
  118.      ending register numbers or only a range of valid counts.  For those
  119.      machines, use a `define_expand' (*note Expander Definitions::.)
  120.      and make the pattern fail if the restrictions are not met.
  121.      Write the generated insn as a `parallel' with elements being a
  122.      `set' of one register from the appropriate memory location (you may
  123.      also need `use' or `clobber' elements).  Use a `match_parallel'
  124.      (*note RTL Template::.) to recognize the insn.  See `a29k.md' and
  125.      `rs6000.md' for examples of the use of this insn pattern.
  126. `store_multiple'
  127.      Similar to `load_multiple', but store several consecutive registers
  128.      into consecutive memory locations.  Operand 0 is the first of the
  129.      consecutive memory locations, operand 1 is the first register, and
  130.      operand 2 is a constant: the number of consecutive registers.
  131. `addM3'
  132.      Add operand 2 and operand 1, storing the result in operand 0.  All
  133.      operands must have mode M.  This can be used even on two-address
  134.      machines, by means of constraints requiring operands 1 and 0 to be
  135.      the same location.
  136. `subM3', `mulM3'
  137. `divM3', `udivM3', `modM3', `umodM3'
  138. `sminM3', `smaxM3', `uminM3', `umaxM3'
  139. `andM3', `iorM3', `xorM3'
  140.      Similar, for other arithmetic operations.
  141. `mulhisi3'
  142.      Multiply operands 1 and 2, which have mode `HImode', and store a
  143.      `SImode' product in operand 0.
  144. `mulqihi3', `mulsidi3'
  145.      Similar widening-multiplication instructions of other widths.
  146. `umulqihi3', `umulhisi3', `umulsidi3'
  147.      Similar widening-multiplication instructions that do unsigned
  148.      multiplication.
  149. `divmodM4'
  150.      Signed division that produces both a quotient and a remainder.
  151.      Operand 1 is divided by operand 2 to produce a quotient stored in
  152.      operand 0 and a remainder stored in operand 3.
  153.      For machines with an instruction that produces both a quotient and
  154.      a remainder, provide a pattern for `divmodM4' but do not provide
  155.      patterns for `divM3' and `modM3'.  This allows optimization in the
  156.      relatively common case when both the quotient and remainder are
  157.      computed.
  158.      If an instruction that just produces a quotient or just a remainder
  159.      exists and is more efficient than the instruction that produces
  160.      both, write the output routine of `divmodM4' to call
  161.      `find_reg_note' and look for a `REG_UNUSED' note on the quotient
  162.      or remainder and generate the appropriate instruction.
  163. `udivmodM4'
  164.      Similar, but does unsigned division.
  165. `ashlM3'
  166.      Arithmetic-shift operand 1 left by a number of bits specified by
  167.      operand 2, and store the result in operand 0.  Here M is the mode
  168.      of operand 0 and operand 1; operand 2's mode is specified by the
  169.      instruction pattern, and the compiler will convert the operand to
  170.      that mode before generating the instruction.
  171. `ashrM3', `lshrM3', `rotlM3', `rotrM3'
  172.      Other shift and rotate instructions, analogous to the `ashlM3'
  173.      instructions.
  174. `negM2'
  175.      Negate operand 1 and store the result in operand 0.
  176. `absM2'
  177.      Store the absolute value of operand 1 into operand 0.
  178. `sqrtM2'
  179.      Store the square root of operand 1 into operand 0.
  180.      The `sqrt' built-in function of C always uses the mode which
  181.      corresponds to the C data type `double'.
  182. `ffsM2'
  183.      Store into operand 0 one plus the index of the least significant
  184.      1-bit of operand 1.  If operand 1 is zero, store zero.  M is the
  185.      mode of operand 0; operand 1's mode is specified by the instruction
  186.      pattern, and the compiler will convert the operand to that mode
  187.      before generating the instruction.
  188.      The `ffs' built-in function of C always uses the mode which
  189.      corresponds to the C data type `int'.
  190. `one_cmplM2'
  191.      Store the bitwise-complement of operand 1 into operand 0.
  192. `cmpM'
  193.      Compare operand 0 and operand 1, and set the condition codes.  The
  194.      RTL pattern should look like this:
  195.           (set (cc0) (compare (match_operand:M 0 ...)
  196.                               (match_operand:M 1 ...)))
  197. `tstM'
  198.      Compare operand 0 against zero, and set the condition codes.  The
  199.      RTL pattern should look like this:
  200.           (set (cc0) (match_operand:M 0 ...))
  201.      `tstM' patterns should not be defined for machines that do not use
  202.      `(cc0)'.  Doing so would confuse the optimizer since it would no
  203.      longer be clear which `set' operations were comparisons.  The
  204.      `cmpM' patterns should be used instead.
  205. `movstrM'
  206.      Block move instruction.  The addresses of the destination and
  207.      source strings are the first two operands, and both are in mode
  208.      `Pmode'.  The number of bytes to move is the third operand, in
  209.      mode M.
  210.      The fourth operand is the known shared alignment of the source and
  211.      destination, in the form of a `const_int' rtx.  Thus, if the
  212.      compiler knows that both source and destination are word-aligned,
  213.      it may provide the value 4 for this operand.
  214.      These patterns need not give special consideration to the
  215.      possibility that the source and destination strings might overlap.
  216. `cmpstrM'
  217.      Block compare instruction, with five operands.  Operand 0 is the
  218.      output; it has mode M.  The remaining four operands are like the
  219.      operands of `movstrM'.  The two memory blocks specified are
  220.      compared byte by byte in lexicographic order.  The effect of the
  221.      instruction is to store a value in operand 0 whose sign indicates
  222.      the result of the comparison.
  223.      Compute the length of a string, with three operands.  Operand 0 is
  224.      the result (of mode M), operand 1 is a `mem' referring to the
  225.      first character of the string, operand 2 is the character to
  226.      search for (normally zero), and operand 3 is a constant describing
  227.      the known alignment of the beginning of the string.
  228. `floatMN2'
  229.      Convert signed integer operand 1 (valid for fixed point mode M) to
  230.      floating point mode N and store in operand 0 (which has mode N).
  231. `floatunsMN2'
  232.      Convert unsigned integer operand 1 (valid for fixed point mode M)
  233.      to floating point mode N and store in operand 0 (which has mode N).
  234. `fixMN2'
  235.      Convert operand 1 (valid for floating point mode M) to fixed point
  236.      mode N as a signed number and store in operand 0 (which has mode
  237.      N).  This instruction's result is defined only when the value of
  238.      operand 1 is an integer.
  239. `fixunsMN2'
  240.      Convert operand 1 (valid for floating point mode M) to fixed point
  241.      mode N as an unsigned number and store in operand 0 (which has
  242.      mode N).  This instruction's result is defined only when the value
  243.      of operand 1 is an integer.
  244. `ftruncM2'
  245.      Convert operand 1 (valid for floating point mode M) to an integer
  246.      value, still represented in floating point mode M, and store it in
  247.      operand 0 (valid for floating point mode M).
  248. `fix_truncMN2'
  249.      Like `fixMN2' but works for any floating point value of mode M by
  250.      converting the value to an integer.
  251. `fixuns_truncMN2'
  252.      Like `fixunsMN2' but works for any floating point value of mode M
  253.      by converting the value to an integer.
  254. `truncMN'
  255.      Truncate operand 1 (valid for mode M) to mode N and store in
  256.      operand 0 (which has mode N).  Both modes must be fixed point or
  257.      both floating point.
  258. `extendMN'
  259.      Sign-extend operand 1 (valid for mode M) to mode N and store in
  260.      operand 0 (which has mode N).  Both modes must be fixed point or
  261.      both floating point.
  262. `zero_extendMN'
  263.      Zero-extend operand 1 (valid for mode M) to mode N and store in
  264.      operand 0 (which has mode N).  Both modes must be fixed point.
  265. `extv'
  266.      Extract a bit field from operand 1 (a register or memory operand),
  267.      where operand 2 specifies the width in bits and operand 3 the
  268.      starting bit, and store it in operand 0.  Operand 0 must have mode
  269.      `word_mode'.  Operand 1 may have mode `byte_mode' or `word_mode';
  270.      often `word_mode' is allowed only for registers.  Operands 2 and 3
  271.      must be valid for `word_mode'.
  272.      The RTL generation pass generates this instruction only with
  273.      constants for operands 2 and 3.
  274.      The bit-field value is sign-extended to a full word integer before
  275.      it is stored in operand 0.
  276. `extzv'
  277.      Like `extv' except that the bit-field value is zero-extended.
  278. `insv'
  279.      Store operand 3 (which must be valid for `word_mode') into a bit
  280.      field in operand 0, where operand 1 specifies the width in bits and
  281.      operand 2 the starting bit.  Operand 0 may have mode `byte_mode' or
  282.      `word_mode'; often `word_mode' is allowed only for registers.
  283.      Operands 1 and 2 must be valid for `word_mode'.
  284.      The RTL generation pass generates this instruction only with
  285.      constants for operands 1 and 2.
  286. `sCOND'
  287.      Store zero or nonzero in the operand according to the condition
  288.      codes.  Value stored is nonzero iff the condition COND is true.
  289.      cOND is the name of a comparison operation expression code, such
  290.      as `eq', `lt' or `leu'.
  291.      You specify the mode that the operand must have when you write the
  292.      `match_operand' expression.  The compiler automatically sees which
  293.      mode you have used and supplies an operand of that mode.
  294.      The value stored for a true condition must have 1 as its low bit,
  295.      or else must be negative.  Otherwise the instruction is not
  296.      suitable and you should omit it from the machine description.  You
  297.      describe to the compiler exactly which value is stored by defining
  298.      the macro `STORE_FLAG_VALUE' (*note Misc::.).  If a description
  299.      cannot be found that can be used for all the `sCOND' patterns, you
  300.      should omit those operations from the machine description.
  301.      These operations may fail, but should do so only in relatively
  302.      uncommon cases; if they would fail for common cases involving
  303.      integer comparisons, it is best to omit these patterns.
  304.      If these operations are omitted, the compiler will usually
  305.      generate code that copies the constant one to the target and
  306.      branches around an assignment of zero to the target.  If this code
  307.      is more efficient than the potential instructions used for the
  308.      `sCOND' pattern followed by those required to convert the result
  309.      into a 1 or a zero in `SImode', you should omit the `sCOND'
  310.      operations from the machine description.
  311. `bCOND'
  312.      Conditional branch instruction.  Operand 0 is a `label_ref' that
  313.      refers to the label to jump to.  Jump if the condition codes meet
  314.      condition COND.
  315.      Some machines do not follow the model assumed here where a
  316.      comparison instruction is followed by a conditional branch
  317.      instruction.  In that case, the `cmpM' (and `tstM') patterns should
  318.      simply store the operands away and generate all the required insns
  319.      in a `define_expand' (*note Expander Definitions::.) for the
  320.      conditional branch operations.  All calls to expand `bCOND'
  321.      patterns are immediately preceded by calls to expand either a
  322.      `cmpM' pattern or a `tstM' pattern.
  323.      Machines that use a pseudo register for the condition code value,
  324.      or where the mode used for the comparison depends on the condition
  325.      being tested, should also use the above mechanism.  *Note Jump
  326.      Patterns::
  327.      The above discussion also applies to `sCOND' patterns.
  328. `call'
  329.      Subroutine call instruction returning no value.  Operand 0 is the
  330.      function to call; operand 1 is the number of bytes of arguments
  331.      pushed (in mode `SImode', except it is normally a `const_int');
  332.      operand 2 is the number of registers used as operands.
  333.      On most machines, operand 2 is not actually stored into the RTL
  334.      pattern.  It is supplied for the sake of some RISC machines which
  335.      need to put this information into the assembler code; they can put
  336.      it in the RTL instead of operand 1.
  337.      Operand 0 should be a `mem' RTX whose address is the address of the
  338.      function.  Note, however, that this address can be a `symbol_ref'
  339.      expression even if it would not be a legitimate memory address on
  340.      the target machine.  If it is also not a valid argument for a call
  341.      instruction, the pattern for this operation should be a
  342.      `define_expand' (*note Expander Definitions::.) that places the
  343.      address into a register and uses that register in the call
  344.      instruction.
  345. `call_value'
  346.      Subroutine call instruction returning a value.  Operand 0 is the
  347.      hard register in which the value is returned.  There are three more
  348.      operands, the same as the three operands of the `call' instruction
  349.      (but with numbers increased by one).
  350.      Subroutines that return `BLKmode' objects use the `call' insn.
  351. `call_pop', `call_value_pop'
  352.      Similar to `call' and `call_value', except used if defined and if
  353.      `RETURN_POPS_ARGS' is non-zero.  They should emit a `parallel'
  354.      that contains both the function call and a `set' to indicate the
  355.      adjustment made to the frame pointer.
  356.      For machines where `RETURN_POPS_ARGS' can be non-zero, the use of
  357.      these patterns increases the number of functions for which the
  358.      frame pointer can be eliminated, if desired.
  359. `untyped_call'
  360.      Subroutine call instruction returning a value of any type.
  361.      Operand 0 is the function to call; operand 1 is a memory location
  362.      where the result of calling the function is to be stored; operand
  363.      2 is a `parallel' expression where each element is a `set'
  364.      expression that indicates the saving of a function return value
  365.      into the result block.
  366.      This instruction pattern should be defined to support
  367.      `__builtin_apply' on machines where special instructions are needed
  368.      to call a subroutine with arbitrary arguments or to save the value
  369.      returned.  This instruction pattern is required on machines that
  370.      have multiple registers that can hold a return value (i.e.
  371.      `FUNCTION_VALUE_REGNO_P' is true for more than one register).
  372. `return'
  373.      Subroutine return instruction.  This instruction pattern name
  374.      should be defined only if a single instruction can do all the work
  375.      of returning from a function.
  376.      Like the `movM' patterns, this pattern is also used after the RTL
  377.      generation phase.  In this case it is to support machines where
  378.      multiple instructions are usually needed to return from a
  379.      function, but some class of functions only requires one
  380.      instruction to implement a return.  Normally, the applicable
  381.      functions are those which do not need to save any registers or
  382.      allocate stack space.
  383.      For such machines, the condition specified in this pattern should
  384.      only be true when `reload_completed' is non-zero and the function's
  385.      epilogue would only be a single instruction.  For machines with
  386.      register windows, the routine `leaf_function_p' may be used to
  387.      determine if a register window push is required.
  388.      Machines that have conditional return instructions should define
  389.      patterns such as
  390.           (define_insn ""
  391.             [(set (pc)
  392.                   (if_then_else (match_operator
  393.                                    0 "comparison_operator"
  394.                                    [(cc0) (const_int 0)])
  395.                                 (return)
  396.                                 (pc)))]
  397.             "CONDITION"
  398.             "...")
  399.      where CONDITION would normally be the same condition specified on
  400.      the named `return' pattern.
  401. `untyped_return'
  402.      Untyped subroutine return instruction.  This instruction pattern
  403.      should be defined to support `__builtin_return' on machines where
  404.      special instructions are needed to return a value of any type.
  405.      Operand 0 is a memory location where the result of calling a
  406.      function with `__builtin_apply' is stored; operand 1 is a
  407.      `parallel' expression where each element is a `set' expression
  408.      that indicates the restoring of a function return value from the
  409.      result block.
  410. `nop'
  411.      No-op instruction.  This instruction pattern name should always be
  412.      defined to output a no-op in assembler code.  `(const_int 0)' will
  413.      do as an RTL pattern.
  414. `indirect_jump'
  415.      An instruction to jump to an address which is operand zero.  This
  416.      pattern name is mandatory on all machines.
  417. `casesi'
  418.      Instruction to jump through a dispatch table, including bounds
  419.      checking.  This instruction takes five operands:
  420.        1. The index to dispatch on, which has mode `SImode'.
  421.        2. The lower bound for indices in the table, an integer constant.
  422.        3. The total range of indices in the table--the largest index
  423.           minus the smallest one (both inclusive).
  424.        4. A label that precedes the table itself.
  425.        5. A label to jump to if the index has a value outside the
  426.           bounds.  (If the machine-description macro
  427.           `CASE_DROPS_THROUGH' is defined, then an out-of-bounds index
  428.           drops through to the code following the jump table instead of
  429.           jumping to this label.  In that case, this label is not
  430.           actually used by the `casesi' instruction, but it is always
  431.           provided as an operand.)
  432.      The table is a `addr_vec' or `addr_diff_vec' inside of a
  433.      `jump_insn'.  The number of elements in the table is one plus the
  434.      difference between the upper bound and the lower bound.
  435. `tablejump'
  436.      Instruction to jump to a variable address.  This is a low-level
  437.      capability which can be used to implement a dispatch table when
  438.      there is no `casesi' pattern.
  439.      This pattern requires two operands: the address or offset, and a
  440.      label which should immediately precede the jump table.  If the
  441.      macro `CASE_VECTOR_PC_RELATIVE' is defined then the first operand
  442.      is an offset which counts from the address of the table;
  443.      otherwise, it is an absolute address to jump to.  In either case,
  444.      the first operand has mode `Pmode'.
  445.      The `tablejump' insn is always the last insn before the jump table
  446.      it uses.  Its assembler code normally has no need to use the
  447.      second operand, but you should incorporate it in the RTL pattern so
  448.      that the jump optimizer will not delete the table as unreachable
  449.      code.
  450. `save_stack_block'
  451. `save_stack_function'
  452. `save_stack_nonlocal'
  453. `restore_stack_block'
  454. `restore_stack_function'
  455. `restore_stack_nonlocal'
  456.      Most machines save and restore the stack pointer by copying it to
  457.      or from an object of mode `Pmode'.  Do not define these patterns on
  458.      such machines.
  459.      Some machines require special handling for stack pointer saves and
  460.      restores.  On those machines, define the patterns corresponding to
  461.      the non-standard cases by using a `define_expand' (*note Expander
  462.      Definitions::.) that produces the required insns.  The three types
  463.      of saves and restores are:
  464.        1. `save_stack_block' saves the stack pointer at the start of a
  465.           block that allocates a variable-sized object, and
  466.           `restore_stack_block' restores the stack pointer when the
  467.           block is exited.
  468.        2. `save_stack_function' and `restore_stack_function' do a
  469.           similar job for the outermost block of a function and are
  470.           used when the function allocates variable-sized objects or
  471.           calls `alloca'.  Only the epilogue uses the restored stack
  472.           pointer, allowing a simpler save or restore sequence on some
  473.           machines.
  474.        3. `save_stack_nonlocal' is used in functions that contain labels
  475.           branched to by nested functions.  It saves the stack pointer
  476.           in such a way that the inner function can use
  477.           `restore_stack_nonlocal' to restore the stack pointer.  The
  478.           compiler generates code to restore the frame and argument
  479.           pointer registers, but some machines require saving and
  480.           restoring additional data such as register window information
  481.           or stack backchains.  Place insns in these patterns to save
  482.           and restore any such required data.
  483.      When saving the stack pointer, operand 0 is the save area and
  484.      operand 1 is the stack pointer.  The mode used to allocate the
  485.      save area is the mode of operand 0.  You must specify an integral
  486.      mode, or `VOIDmode' if no save area is needed for a particular
  487.      type of save (either because no save is needed or because a
  488.      machine-specific save area can be used).  Operand 0 is the stack
  489.      pointer and operand 1 is the save area for restore operations.  If
  490.      `save_stack_block' is defined, operand 0 must not be `VOIDmode'
  491.      since these saves can be arbitrarily nested.
  492.      A save area is a `mem' that is at a constant offset from
  493.      `virtual_stack_vars_rtx' when the stack pointer is saved for use by
  494.      nonlocal gotos and a `reg' in the other two cases.
  495. `allocate_stack'
  496.      Subtract (or add if `STACK_GROWS_DOWNWARD' is undefined) operand 0
  497.      from the stack pointer to create space for dynamically allocated
  498.      data.
  499.      Do not define this pattern if all that must be done is the
  500.      subtraction.  Some machines require other operations such as stack
  501.      probes or maintaining the back chain.  Define this pattern to emit
  502.      those operations in addition to updating the stack pointer.
  503. File: gcc.info,  Node: Pattern Ordering,  Next: Dependent Patterns,  Prev: Standard Names,  Up: Machine Desc
  504. When the Order of Patterns Matters
  505. ==================================
  506.    Sometimes an insn can match more than one instruction pattern.  Then
  507. the pattern that appears first in the machine description is the one
  508. used.  Therefore, more specific patterns (patterns that will match
  509. fewer things) and faster instructions (those that will produce better
  510. code when they do match) should usually go first in the description.
  511.    In some cases the effect of ordering the patterns can be used to hide
  512. a pattern when it is not valid.  For example, the 68000 has an
  513. instruction for converting a fullword to floating point and another for
  514. converting a byte to floating point.  An instruction converting an
  515. integer to floating point could match either one.  We put the pattern
  516. to convert the fullword first to make sure that one will be used rather
  517. than the other.  (Otherwise a large integer might be generated as a
  518. single-byte immediate quantity, which would not work.) Instead of using
  519. this pattern ordering it would be possible to make the pattern for
  520. convert-a-byte smart enough to deal properly with any constant value.
  521. File: gcc.info,  Node: Dependent Patterns,  Next: Jump Patterns,  Prev: Pattern Ordering,  Up: Machine Desc
  522. Interdependence of Patterns
  523. ===========================
  524.    Every machine description must have a named pattern for each of the
  525. conditional branch names `bCOND'.  The recognition template must always
  526. have the form
  527.      (set (pc)
  528.           (if_then_else (COND (cc0) (const_int 0))
  529.                         (label_ref (match_operand 0 "" ""))
  530.                         (pc)))
  531. In addition, every machine description must have an anonymous pattern
  532. for each of the possible reverse-conditional branches.  Their templates
  533. look like
  534.      (set (pc)
  535.           (if_then_else (COND (cc0) (const_int 0))
  536.                         (pc)
  537.                         (label_ref (match_operand 0 "" ""))))
  538. They are necessary because jump optimization can turn direct-conditional
  539. branches into reverse-conditional branches.
  540.    It is often convenient to use the `match_operator' construct to
  541. reduce the number of patterns that must be specified for branches.  For
  542. example,
  543.      (define_insn ""
  544.        [(set (pc)
  545.              (if_then_else (match_operator 0 "comparison_operator"
  546.                                            [(cc0) (const_int 0)])
  547.                            (pc)
  548.                            (label_ref (match_operand 1 "" ""))))]
  549.        "CONDITION"
  550.        "...")
  551.    In some cases machines support instructions identical except for the
  552. machine mode of one or more operands.  For example, there may be
  553. "sign-extend halfword" and "sign-extend byte" instructions whose
  554. patterns are
  555.      (set (match_operand:SI 0 ...)
  556.           (extend:SI (match_operand:HI 1 ...)))
  557.      
  558.      (set (match_operand:SI 0 ...)
  559.           (extend:SI (match_operand:QI 1 ...)))
  560. Constant integers do not specify a machine mode, so an instruction to
  561. extend a constant value could match either pattern.  The pattern it
  562. actually will match is the one that appears first in the file.  For
  563. correct results, this must be the one for the widest possible mode
  564. (`HImode', here).  If the pattern matches the `QImode' instruction, the
  565. results will be incorrect if the constant value does not actually fit
  566. that mode.
  567.    Such instructions to extend constants are rarely generated because
  568. they are optimized away, but they do occasionally happen in nonoptimized
  569. compilations.
  570.    If a constraint in a pattern allows a constant, the reload pass may
  571. replace a register with a constant permitted by the constraint in some
  572. cases.  Similarly for memory references.  You must ensure that the
  573. predicate permits all objects allowed by the constraints to prevent the
  574. compiler from crashing.
  575.    Because of this substitution, you should not provide separate
  576. patterns for increment and decrement instructions.  Instead, they
  577. should be generated from the same pattern that supports
  578. register-register add insns by examining the operands and generating
  579. the appropriate machine instruction.
  580. File: gcc.info,  Node: Jump Patterns,  Next: Insn Canonicalizations,  Prev: Dependent Patterns,  Up: Machine Desc
  581. Defining Jump Instruction Patterns
  582. ==================================
  583.    For most machines, GNU CC assumes that the machine has a condition
  584. code.  A comparison insn sets the condition code, recording the results
  585. of both signed and unsigned comparison of the given operands.  A
  586. separate branch insn tests the condition code and branches or not
  587. according its value.  The branch insns come in distinct signed and
  588. unsigned flavors.  Many common machines, such as the Vax, the 68000 and
  589. the 32000, work this way.
  590.    Some machines have distinct signed and unsigned compare
  591. instructions, and only one set of conditional branch instructions.  The
  592. easiest way to handle these machines is to treat them just like the
  593. others until the final stage where assembly code is written.  At this
  594. time, when outputting code for the compare instruction, peek ahead at
  595. the following branch using `next_cc0_user (insn)'.  (The variable
  596. `insn' refers to the insn being output, in the output-writing code in
  597. an instruction pattern.)  If the RTL says that is an unsigned branch,
  598. output an unsigned compare; otherwise output a signed compare.  When
  599. the branch itself is output, you can treat signed and unsigned branches
  600. identically.
  601.    The reason you can do this is that GNU CC always generates a pair of
  602. consecutive RTL insns, possibly separated by `note' insns, one to set
  603. the condition code and one to test it, and keeps the pair inviolate
  604. until the end.
  605.    To go with this technique, you must define the machine-description
  606. macro `NOTICE_UPDATE_CC' to do `CC_STATUS_INIT'; in other words, no
  607. compare instruction is superfluous.
  608.    Some machines have compare-and-branch instructions and no condition
  609. code.  A similar technique works for them.  When it is time to "output"
  610. a compare instruction, record its operands in two static variables.
  611. When outputting the branch-on-condition-code instruction that follows,
  612. actually output a compare-and-branch instruction that uses the
  613. remembered operands.
  614.    It also works to define patterns for compare-and-branch instructions.
  615. In optimizing compilation, the pair of compare and branch instructions
  616. will be combined according to these patterns.  But this does not happen
  617. if optimization is not requested.  So you must use one of the solutions
  618. above in addition to any special patterns you define.
  619.    In many RISC machines, most instructions do not affect the condition
  620. code and there may not even be a separate condition code register.  On
  621. these machines, the restriction that the definition and use of the
  622. condition code be adjacent insns is not necessary and can prevent
  623. important optimizations.  For example, on the IBM RS/6000, there is a
  624. delay for taken branches unless the condition code register is set three
  625. instructions earlier than the conditional branch.  The instruction
  626. scheduler cannot perform this optimization if it is not permitted to
  627. separate the definition and use of the condition code register.
  628.    On these machines, do not use `(cc0)', but instead use a register to
  629. represent the condition code.  If there is a specific condition code
  630. register in the machine, use a hard register.  If the condition code or
  631. comparison result can be placed in any general register, or if there are
  632. multiple condition registers, use a pseudo register.
  633.    On some machines, the type of branch instruction generated may
  634. depend on the way the condition code was produced; for example, on the
  635. 68k and Sparc, setting the condition code directly from an add or
  636. subtract instruction does not clear the overflow bit the way that a test
  637. instruction does, so a different branch instruction must be used for
  638. some conditional branches.  For machines that use `(cc0)', the set and
  639. use of the condition code must be adjacent (separated only by `note'
  640. insns) allowing flags in `cc_status' to be used.  (*Note Condition
  641. Code::.)  Also, the comparison and branch insns can be located from
  642. each other by using the functions `prev_cc0_setter' and `next_cc0_user'.
  643.    However, this is not true on machines that do not use `(cc0)'.  On
  644. those machines, no assumptions can be made about the adjacency of the
  645. compare and branch insns and the above methods cannot be used.  Instead,
  646. we use the machine mode of the condition code register to record
  647. different formats of the condition code register.
  648.    Registers used to store the condition code value should have a mode
  649. that is in class `MODE_CC'.  Normally, it will be `CCmode'.  If
  650. additional modes are required (as for the add example mentioned above in
  651. the Sparc), define the macro `EXTRA_CC_MODES' to list the additional
  652. modes required (*note Condition Code::.).  Also define `EXTRA_CC_NAMES'
  653. to list the names of those modes and `SELECT_CC_MODE' to choose a mode
  654. given an operand of a compare.
  655.    If it is known during RTL generation that a different mode will be
  656. required (for example, if the machine has separate compare instructions
  657. for signed and unsigned quantities, like most IBM processors), they can
  658. be specified at that time.
  659.    If the cases that require different modes would be made by
  660. instruction combination, the macro `SELECT_CC_MODE' determines which
  661. machine mode should be used for the comparison result.  The patterns
  662. should be written using that mode.  To support the case of the add on
  663. the Sparc discussed above, we have the pattern
  664.      (define_insn ""
  665.        [(set (reg:CC_NOOV 0)
  666.              (compare:CC_NOOV
  667.                (plus:SI (match_operand:SI 0 "register_operand" "%r")
  668.                         (match_operand:SI 1 "arith_operand" "rI"))
  669.                (const_int 0)))]
  670.        ""
  671.        "...")
  672.    The `SELECT_CC_MODE' macro on the Sparc returns `CC_NOOVmode' for
  673. comparisons whose argument is a `plus'.
  674. File: gcc.info,  Node: Insn Canonicalizations,  Next: Peephole Definitions,  Prev: Jump Patterns,  Up: Machine Desc
  675. Canonicalization of Instructions
  676. ================================
  677.    There are often cases where multiple RTL expressions could represent
  678. an operation performed by a single machine instruction.  This situation
  679. is most commonly encountered with logical, branch, and
  680. multiply-accumulate instructions.  In such cases, the compiler attempts
  681. to convert these multiple RTL expressions into a single canonical form
  682. to reduce the number of insn patterns required.
  683.    In addition to algebraic simplifications, following canonicalizations
  684. are performed:
  685.    * For commutative and comparison operators, a constant is always
  686.      made the second operand.  If a machine only supports a constant as
  687.      the second operand, only patterns that match a constant in the
  688.      second operand need be supplied.
  689.      For these operators, if only one operand is a `neg', `not',
  690.      `mult', `plus', or `minus' expression, it will be the first
  691.      operand.
  692.    * For the `compare' operator, a constant is always the second operand
  693.      on machines where `cc0' is used (*note Jump Patterns::.).  On other
  694.      machines, there are rare cases where the compiler might want to
  695.      construct a `compare' with a constant as the first operand.
  696.      However, these cases are not common enough for it to be worthwhile
  697.      to provide a pattern matching a constant as the first operand
  698.      unless the machine actually has such an instruction.
  699.      An operand of `neg', `not', `mult', `plus', or `minus' is made the
  700.      first operand under the same conditions as above.
  701.    * `(minus X (const_int N))' is converted to `(plus X (const_int
  702.      -N))'.
  703.    * Within address computations (i.e., inside `mem'), a left shift is
  704.      converted into the appropriate multiplication by a power of two.
  705.      De`Morgan's Law is used to move bitwise negation inside a bitwise
  706.      logical-and or logical-or operation.  If this results in only one
  707.      operand being a `not' expression, it will be the first one.
  708.      A machine that has an instruction that performs a bitwise
  709.      logical-and of one operand with the bitwise negation of the other
  710.      should specify the pattern for that instruction as
  711.           (define_insn ""
  712.             [(set (match_operand:M 0 ...)
  713.                   (and:M (not:M (match_operand:M 1 ...))
  714.                                (match_operand:M 2 ...)))]
  715.             "..."
  716.             "...")
  717.      Similarly, a pattern for a "NAND" instruction should be written
  718.           (define_insn ""
  719.             [(set (match_operand:M 0 ...)
  720.                   (ior:M (not:M (match_operand:M 1 ...))
  721.                                (not:M (match_operand:M 2 ...))))]
  722.             "..."
  723.             "...")
  724.      In both cases, it is not necessary to include patterns for the many
  725.      logically equivalent RTL expressions.
  726.    * The only possible RTL expressions involving both bitwise
  727.      exclusive-or and bitwise negation are `(xor:M X Y)' and `(not:M
  728.      (xor:M X Y))'.
  729.    * The sum of three items, one of which is a constant, will only
  730.      appear in the form
  731.           (plus:M (plus:M X Y) CONSTANT)
  732.    * On machines that do not use `cc0', `(compare X (const_int 0))'
  733.      will be converted to X.
  734.    * Equality comparisons of a group of bits (usually a single bit)
  735.      with zero will be written using `zero_extract' rather than the
  736.      equivalent `and' or `sign_extract' operations.
  737. File: gcc.info,  Node: Peephole Definitions,  Next: Expander Definitions,  Prev: Insn Canonicalizations,  Up: Machine Desc
  738. Machine-Specific Peephole Optimizers
  739. ====================================
  740.    In addition to instruction patterns the `md' file may contain
  741. definitions of machine-specific peephole optimizations.
  742.    The combiner does not notice certain peephole optimizations when the
  743. data flow in the program does not suggest that it should try them.  For
  744. example, sometimes two consecutive insns related in purpose can be
  745. combined even though the second one does not appear to use a register
  746. computed in the first one.  A machine-specific peephole optimizer can
  747. detect such opportunities.
  748.    A definition looks like this:
  749.      (define_peephole
  750.        [INSN-PATTERN-1
  751.         INSN-PATTERN-2
  752.         ...]
  753.        "CONDITION"
  754.        "TEMPLATE"
  755.        "OPTIONAL INSN-ATTRIBUTES")
  756. The last string operand may be omitted if you are not using any
  757. machine-specific information in this machine description.  If present,
  758. it must obey the same rules as in a `define_insn'.
  759.    In this skeleton, INSN-PATTERN-1 and so on are patterns to match
  760. consecutive insns.  The optimization applies to a sequence of insns when
  761. INSN-PATTERN-1 matches the first one, INSN-PATTERN-2 matches the next,
  762. and so on.
  763.    Each of the insns matched by a peephole must also match a
  764. `define_insn'.  Peepholes are checked only at the last stage just
  765. before code generation, and only optionally.  Therefore, any insn which
  766. would match a peephole but no `define_insn' will cause a crash in code
  767. generation in an unoptimized compilation, or at various optimization
  768. stages.
  769.    The operands of the insns are matched with `match_operands',
  770. `match_operator', and `match_dup', as usual.  What is not usual is that
  771. the operand numbers apply to all the insn patterns in the definition.
  772. So, you can check for identical operands in two insns by using
  773. `match_operand' in one insn and `match_dup' in the other.
  774.    The operand constraints used in `match_operand' patterns do not have
  775. any direct effect on the applicability of the peephole, but they will
  776. be validated afterward, so make sure your constraints are general enough
  777. to apply whenever the peephole matches.  If the peephole matches but
  778. the constraints are not satisfied, the compiler will crash.
  779.    It is safe to omit constraints in all the operands of the peephole;
  780. or you can write constraints which serve as a double-check on the
  781. criteria previously tested.
  782.    Once a sequence of insns matches the patterns, the CONDITION is
  783. checked.  This is a C expression which makes the final decision whether
  784. to perform the optimization (we do so if the expression is nonzero).  If
  785. CONDITION is omitted (in other words, the string is empty) then the
  786. optimization is applied to every sequence of insns that matches the
  787. patterns.
  788.    The defined peephole optimizations are applied after register
  789. allocation is complete.  Therefore, the peephole definition can check
  790. which operands have ended up in which kinds of registers, just by
  791. looking at the operands.
  792.    The way to refer to the operands in CONDITION is to write
  793. `operands[I]' for operand number I (as matched by `(match_operand I
  794. ...)').  Use the variable `insn' to refer to the last of the insns
  795. being matched; use `prev_nonnote_insn' to find the preceding insns.
  796.    When optimizing computations with intermediate results, you can use
  797. CONDITION to match only when the intermediate results are not used
  798. elsewhere.  Use the C expression `dead_or_set_p (INSN, OP)', where INSN
  799. is the insn in which you expect the value to be used for the last time
  800. (from the value of `insn', together with use of `prev_nonnote_insn'),
  801. and OP is the intermediate value (from `operands[I]').
  802.    Applying the optimization means replacing the sequence of insns with
  803. one new insn.  The TEMPLATE controls ultimate output of assembler code
  804. for this combined insn.  It works exactly like the template of a
  805. `define_insn'.  Operand numbers in this template are the same ones used
  806. in matching the original sequence of insns.
  807.    The result of a defined peephole optimizer does not need to match
  808. any of the insn patterns in the machine description; it does not even
  809. have an opportunity to match them.  The peephole optimizer definition
  810. itself serves as the insn pattern to control how the insn is output.
  811.    Defined peephole optimizers are run as assembler code is being
  812. output, so the insns they produce are never combined or rearranged in
  813. any way.
  814.    Here is an example, taken from the 68000 machine description:
  815.      (define_peephole
  816.        [(set (reg:SI 15) (plus:SI (reg:SI 15) (const_int 4)))
  817.         (set (match_operand:DF 0 "register_operand" "=f")
  818.              (match_operand:DF 1 "register_operand" "ad"))]
  819.        "FP_REG_P (operands[0]) && ! FP_REG_P (operands[1])"
  820.        "*
  821.      {
  822.        rtx xoperands[2];
  823.        xoperands[1] = gen_rtx (REG, SImode, REGNO (operands[1]) + 1);
  824.      #ifdef MOTOROLA
  825.        output_asm_insn (\"move.l %1,(sp)\", xoperands);
  826.        output_asm_insn (\"move.l %1,-(sp)\", operands);
  827.        return \"fmove.d (sp)+,%0\";
  828.      #else
  829.        output_asm_insn (\"movel %1,sp@\", xoperands);
  830.        output_asm_insn (\"movel %1,sp@-\", operands);
  831.        return \"fmoved sp@+,%0\";
  832.      #endif
  833.      }
  834.      ")
  835.    The effect of this optimization is to change
  836.      jbsr _foobar
  837.      addql #4,sp
  838.      movel d1,sp@-
  839.      movel d0,sp@-
  840.      fmoved sp@+,fp0
  841.      jbsr _foobar
  842.      movel d1,sp@
  843.      movel d0,sp@-
  844.      fmoved sp@+,fp0
  845.    INSN-PATTERN-1 and so on look *almost* like the second operand of
  846. `define_insn'.  There is one important difference: the second operand
  847. of `define_insn' consists of one or more RTX's enclosed in square
  848. brackets.  Usually, there is only one: then the same action can be
  849. written as an element of a `define_peephole'.  But when there are
  850. multiple actions in a `define_insn', they are implicitly enclosed in a
  851. `parallel'.  Then you must explicitly write the `parallel', and the
  852. square brackets within it, in the `define_peephole'.  Thus, if an insn
  853. pattern looks like this,
  854.      (define_insn "divmodsi4"
  855.        [(set (match_operand:SI 0 "general_operand" "=d")
  856.              (div:SI (match_operand:SI 1 "general_operand" "0")
  857.                      (match_operand:SI 2 "general_operand" "dmsK")))
  858.         (set (match_operand:SI 3 "general_operand" "=d")
  859.              (mod:SI (match_dup 1) (match_dup 2)))]
  860.        "TARGET_68020"
  861.        "divsl%.l %2,%3:%0")
  862. then the way to mention this insn in a peephole is as follows:
  863.      (define_peephole
  864.        [...
  865.         (parallel
  866.          [(set (match_operand:SI 0 "general_operand" "=d")
  867.                (div:SI (match_operand:SI 1 "general_operand" "0")
  868.                        (match_operand:SI 2 "general_operand" "dmsK")))
  869.           (set (match_operand:SI 3 "general_operand" "=d")
  870.                (mod:SI (match_dup 1) (match_dup 2)))])
  871.         ...]
  872.        ...)
  873.